AWS Lambda
https://gyazo.com/d228375e0d261893fdc6de16dad46ef4
Your execution role needs permission to upload logs to CloudWatch Logs. You can add CloudWatch Logs permissions using the AWSLambdaBasicExecutionRole AWS managed policy provided by Lambda. To add this policy to your role, run the following command:
$ aws iam attach-role-policy --role-name your-role --policy-arn arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole
.zip ファイルアーカイブには、アプリケーションコードとその依存関係が集録されています。
修飾 ARN / 非修飾 ARN
修飾 ARN
ver. suffix が付いた AWS LambdaAWS Lambda.icon 函數の ARN arn:aws:lambda:aws-region:acct-id:function:helloworld:42
非修飾 ARN
ver. suffix を付けてゐない AWS LambdaAWS Lambda.icon 函數の ARN arn:aws:lambda:aws-region:acct-id:function:helloworld
alias との關係は? どっちかには alias を付けられ、どっちかには付けられない